From: Wei Liu Date: Thu, 11 Aug 2016 10:13:10 +0000 (+0100) Subject: libxc: use DPRINTF in xc_domain_dumpcore_via_callback X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~569 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=072e6709978143145a1c1b98c7f014dc4d87907f;p=xen.git libxc: use DPRINTF in xc_domain_dumpcore_via_callback That line doesn't reveal much information to ordinary users. Change that to debug output. Signed-off-by: Wei Liu Acked-by: Ian Jackson --- diff --git a/tools/libxc/xc_core.c b/tools/libxc/xc_core.c index d792566a99..e581905ba9 100644 --- a/tools/libxc/xc_core.c +++ b/tools/libxc/xc_core.c @@ -859,7 +859,7 @@ copy_done: /* When live dump-mode (-L option) is specified, * guest domain may reduce memory. pad with zero pages. */ - IPRINTF("j (%ld) != nr_pages (%ld)", j, nr_pages); + DPRINTF("j (%ld) != nr_pages (%ld)", j, nr_pages); memset(dump_mem_start, 0, PAGE_SIZE); for (; j < nr_pages; j++) { sts = dump_rtn(xch, args, dump_mem_start, PAGE_SIZE);